(C) 1996 AROS - The Amiga Replacement OS


NAME
#include <string.h>
void bzero()
SYNOPSIS
void * ptr
int len

FUNCTION
Write len zero bytes to ptr. If len is zero, does nothing.

INPUTS
ptr
The first byte of the area in memory to be cleared.
len
How many bytes to clear.
RESULT
NOTES
EXAMPLE
BUGS
SEE ALSO
INTERNALS
HISTORY
01.01.1997 ldp
Changed clib to proto
12.12.1996 aros
Use memset() (faster code)
11.12.1996 aros
Corrected header

These functions use int instead of size_t

10.12.1996 aros
Moved #include into first column to allow makedepend to see it.
29.10.1996 aros
Added bzero function